home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Outlook Express 5.xpl < prev    next >
Text File  |  2001-11-27  |  2KB  |  55 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="3"
  3. "COUNT"="1"
  4. "UIPATH"="Internet\Outlook Express\Appearance"
  5. "NAME"="Change Welcome Page"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Path:"
  8. "DATA 1"="HTML Documents (*.htm;*.html)|*.htm;*.html|All Files (*.*)|*.*"
  9. "DESCRIPTION 1"="Here you can use your own, custom start page for Outlook Express instead of the default one. Just type in the path above."
  10. "DESCRIPTION 2"="If you want to use the default page, just clear the field."
  11. "VERSION"="1.03"
  12. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  13. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  14. "CONTACTURL"="http://www.xteq.com/"
  15.  
  16. sValPath=""
  17. sP1="HKCU\Software\Microsoft\Outlook Express\"
  18. sP2="HKCU\Identities\Last User ID"
  19. sVal="FrontPagePath"
  20.  
  21. SUB Plugin_Initialize
  22.  'OK, let's have a look if we are running IE5...
  23.  s=RegReadValue(sP2)
  24.  if IsEmpty(s)=false then
  25.   'OK - we have a value - check if we can find OE
  26.   sValPath="HKCU\Identities\" & s & "\Software\Microsoft\Outlook Express\5.0\"
  27.   If RegPathExists(sValPath) then
  28.    'OE5 !
  29.    sValPath=sValPath '& sValue
  30.   else
  31.    sValPath=sP1 '& sValue
  32.   end if 
  33.  else
  34.   sValPath=sP1 '& sValue
  35.  end if
  36.   
  37.  i=RegReadValue(sValPath & sVal)
  38.  Call SetUIElement(1,i)
  39. END SUB
  40.  
  41. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  42.  s=GetUIElement(1)
  43.  if len(s)=0 then
  44.   'If values exists, delete it
  45.   s=RegValueExists(sValPath & sVal)
  46.   if s=true then
  47.    Call RegDeleteValue(sValPath & sVal)
  48.   end if
  49.  else
  50.   Call RegWriteValue(sValPath & sVal,s,1)
  51.  end if
  52. END SUB
  53.  
  54. SUB Plugin_Terminate
  55. END SUB